home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / asmutil / disasm.zip / PCUTIL.DOC < prev    next >
Text File  |  1988-06-03  |  6KB  |  166 lines

  1. This program provides several functions that would normally be separate
  2. commands.  The intent is to provide as many simple functions as possible
  3. within a 2K .COM file rather than many 1K/.5K .COM files.
  4.  
  5. Note:  Only the first two characters of any parameter is checked.
  6.  
  7.     Syntax:
  8.  
  9.          PCUTIL [NUm] { [ON/OFf] }
  10.                 [CAp] { [ON/OFf] }
  11.          or
  12.          PCUTIL [MOno ]
  13.                 [COlor] { [40] [80] }
  14.                 [SWap ]
  15.          or
  16.          PCUTIL [SEtcolor] XIYIZIN
  17.          or
  18.          PCUTIL [DIal]
  19.                 [DIal] { [T]|[P] xxx-xxxx}
  20.          or
  21.          PCUTIL [BEep]
  22.          or
  23.          PCUTIL [WAit]
  24.  
  25. Copyright (c) 1983 A. Norris Couch
  26.  
  27. Rights granted to distribute this routine with the inclusion of this notice
  28. but not for profit.
  29.  
  30. This author makes no warranty, expressed or implied, as to the correct
  31. nature and operation of this software.
  32.  
  33. NUm:
  34.  
  35. Change (toggle) the Num Lock state.  ON sets Num Lock on and OFf Num Lock
  36. off.  The is no default.
  37.  
  38. CAp:
  39.  
  40. Change (toggle) the Caps Lock state.  ON sets Caps Lock on and OFf Caps Lock
  41. off.  There is no default.
  42.  
  43. MOno:
  44.  
  45. Switch the active display to the monochrome display on systems that have a
  46. monochrome display.  This will cause the monochrome display to be cleared.
  47.  
  48. COlor:
  49.  
  50. Switch the active monitor to the color display on systems that have a color
  51. display.  40 or 80 will set the column width.  This will cause the color
  52. display to be cleared.  There is no default.
  53.  
  54. SWap:
  55.  
  56. Switch (toggle) the active display to the currently inactive display on
  57. systems that have both displays.  This is the same as issuing a MOno or
  58. COlor 80.  This will toggle in 80 column mode only.
  59.  
  60. DIal:
  61.  
  62. DIal command by itself will hang up the phone and drop data terminal ready.
  63. DIal followed by a T or P will "touch tone (T)" or "rotary (P)" dial the
  64. telephone number following the T or P.  DIal will also initialize the modem
  65. to 1200 baud so the Hayes will recognize the command.  This will not work
  66. with non Hayes compatible modems.
  67.  
  68. BEep:
  69.  
  70. Sounds the speaker.  This can be used in a BAT to indicate end of job for
  71. example.
  72.  
  73. WAit:
  74.  
  75. Causes the PC to wait for N seconds before continuing.  This number should
  76. not exceed 3000.  To wait longer use multiple WAit multiple times.
  77.  
  78. SEtcolor:
  79.  
  80.                  Format of the input parameters is shown below:
  81.  
  82. SEtcolor XIYIZI [ and followed immediately by the optional mode # ].
  83.  
  84. Where 'X' is the foreground color, 'Y' is the background color and 'Z' is
  85. the border color.
  86.  
  87. The following letters are the valid input characters that are substituted
  88. for 'X', 'Y' and 'Z':
  89.  
  90.   The letter Z or z is used for BLACK, the letter B or b is used for BLUE,
  91.   the letter G or g is used for GREEN, the letter C or c is used for CYAN,
  92.   the letter R or r is used for RED, the letter M or m is used for MAGENTA,
  93.   the letter Y or y is used for YELLOW and the letter W or w is used for
  94.   WHITE.
  95.  
  96. The following letters are the valid input characters that are substituted
  97. for 'I':
  98.  
  99.   The letter L or l is used for Low Intensity, the letter H or h is used
  100.   for High Intensity.
  101.  
  102.                                 INPUT EXAMPLES:
  103.  
  104. The 40x25 B&W or COLOR and the 80x25 B&W or COLOR modes have the same input
  105. format.  The GRAPHICS modes have input formats different from the ALPHA
  106. modes.
  107.  
  108.  SEtcolor WHZLZL [ 0 or 1 ]  <cr>
  109.  
  110.   Puts the color display adapter into the 40 x 25 ALPHA COLOR MODE.
  111.  
  112.   [H]igh Intensity [W]hite foreground, [L]ow Intensity [Z]Black background
  113.   and [L]ow Intensity [Z]Black border.
  114.  
  115.  SEtcolor WHBHRL [ 2 or 3 ]  <cr>
  116.  
  117.   Puts the color display adapter into the 80 x 25 ALPHA COLOR MODE.
  118.  
  119.   [H]igh Intensity [W]hite foreground, [H]igh Intensity [B]lue background
  120.   and [L]ow Intensity [R]ed border.
  121.  
  122.  SEtcolor GHZLZL6  <cr>
  123.  
  124.   Puts the color display adapter into the 640 x 200 "B & W" GRAPHICS MODE.
  125.  
  126.   [H]igh Intensity [G]reen foreground, [L]ow Intensity [Z]Black background
  127.   and [L]ow Intensity [Z]Black border.  The background and border are dummy
  128.   parameters.
  129.  
  130.  SEtcolor ZLBHZH4  <cr>
  131.  
  132.   Puts the color display adapter into the 320 x 200 COLOR GRAPHICS MODE.
  133.  
  134.   An analysis of the Input Parameter Format for the 320 x 200 graphics modes
  135.   is required to understand the result of the above entry will produce.
  136.  
  137.              The 320 x 200 B & W  or  COLOR GRAPHICS ENTRY FORMAT
  138.  
  139.   The (Z) represents a dummy parameter.  It serves only to prevent the error
  140.   message, " ERROR IN THE INPUT STRING".
  141.  
  142.   SEtcolor X I Y I (Z) I [ optional mode set, either 4 or 5 ]
  143.  
  144.   SEtcolor X............  The 'X' parameter of the foreground color can be
  145.   any of the the Valid Input Characters as listed under the heading INPUT
  146.   PARAMETER FORMAT.  Letters Z, B, G, C, repeat the results produced by
  147.   typing the letters, R, M, Y, W.
  148.  
  149.   'Z' through 'C' as well as 'R' through 'W' represent colors 0 - 3.
  150.  
  151.   SEtcolor ..I..........  'I' can be either 'H' or 'L'.
  152.  
  153.   If 'H' is substituted for 'I' in the 'I' parameter of 'X', then the
  154.   background color is equal to the background color + 16 as in BASIC.
  155.  
  156.   SEtcolor ....Y I......  Is the "standard" way of entering a background
  157.   color.
  158.  
  159.   SEtcolor ........(Z) I  'I' can be either 'H' or 'L'.
  160.  
  161.   If 'H' is substituted for 'I' in the 'I' parameter of (Z), then PALETTE
  162.   one(1) is selected.
  163.  
  164.   If 'L' is substituted for 'I' in the 'I' parameter of (Z), then PALETTE
  165.   zero(0) is selected.
  166.